:root {
    --gold-dark: #0066aa;
    --gold: #0099dd;
    --gold-light: #00bbee;
    --gold-bright: #b3f0ff;
    --gold-intense: #00ddff;
    --gold-gradient: linear-gradient(135deg, #0066aa, #0099dd, #00bbee);
    --primary-color: #0099dd;
    --primary-dark: #0066aa;
    --bg-deep: #030303;
    --bg-panel: rgba(10, 12, 20, 0.85);
    --bg-glass: rgba(10, 15, 25, 0.7);
    --border-glow: rgba(0, 153, 221, 0.4);
    --text-primary: #ffffff;
    --text-muted: #8899bb;
    --text-dark: #050810;
    --shadow-gold: 0 0 30px rgba(0, 153, 221, 0.3);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.8);
    --glass-blur: blur(16px);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --header-h: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold-bright);
}

a { color: var(--gold); text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold-light); text-decoration: none; }

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ===== Video Background ===== */
.video-bg {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0; overflow: hidden;
}
.video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}
.video-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: none;
}

.video-toggle-btn {
    position: fixed;
    bottom: 24px;
    right: 90px; /* Al lado del language switcher o al menos no a la izquierda */
    left: auto;
    z-index: 1000;
    width: 44px; height: 44px;
    background: rgba(10, 5, 2, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 153, 221, 0.2);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.8), inset 0 0 10px rgba(0, 153, 221, 0.05);
    transition: all .3s;
    display: flex; align-items: center; justify-content: center;
}
.video-toggle-btn:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 153, 221, 0.3);
}

/* ===== Site Wrapper ===== */
.site-wrapper {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; flex-direction: column;
}

/* ===== Language Switcher Premium PRO ===== */
.lang-switcher {
    
    display: flex; 
    flex-direction: row;
    align-items: center;
    gap: 4px;
    background: rgba(15, 8, 4, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 153, 221, 0.2);
    border-radius: 40px;
    padding: 2px 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.9), inset 0 0 15px rgba(0, 153, 221, 0.1);
}
.lang-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px; height: 24px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: rgba(5, 2, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.lang-btn:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(0, 153, 221, 0.4);
    transform: scale(1.1) translateX(-4px); /* Sale ligeramente hacia la izquierda */
    background: rgba(20, 10, 0, 0.9);
}
.lang-btn.active {
    color: #1a1a1a;
    background: linear-gradient(135deg, #0099dd, #00bbee);
    border-color: #0099dd;
    box-shadow: 0 0 25px rgba(0, 153, 221, 0.6), inset 0 0 8px rgba(255,255,255,0.8);
    transform: scale(1.15);
}

/* ===== Floating Killers ===== */
.floating-killers {
    position: fixed;
    top: 100px;
    bottom: 50px;
    left: 0;
    width: 180px; /* Reducido de 250 a 180 */
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    overflow: hidden;
    box-shadow: 10px 10px 40px rgba(0, 0, 0,0.8);
    z-index: 100;
    display: flex;
    flex-direction: column;
}
.floating-killers .panel-header {
    background: linear-gradient(180deg, #0044cc 0%, #002b80 50%, #001140 100%);
    border-bottom: 1px solid rgba(0, 100, 200, 0.3);
    box-shadow: inset 0 -5px 15px rgba(0, 100, 200, 0.15);
    padding: 14px 10px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.floating-killers .panel-title {
    font-size: 11px; font-weight: 700; color: var(--gold-bright); margin: 0; text-align: center; letter-spacing: 0.5px; white-space: nowrap;
}
.floating-killers .killers-container {
    flex: 1;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.floating-killers .server-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 10px;
    background: rgba(0, 0, 0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.floating-killers .quick-stat-box {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.floating-killers .stat-val { font-size: 14px; font-weight: 800; color: var(--gold); }
.floating-killers .stat-lbl { font-size: 8px; color: var(--text-muted); text-transform: uppercase; line-height: 1.1; }

.floating-killers .vertical-marquee {
    height: 100%;
    overflow: hidden;
    position: relative;
}
.floating-killers .marquee-track {
    animation: marqueeUp 30s linear infinite;
    display: flex;
    flex-direction: column;
}
.floating-killers .marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marqueeUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.floating-killers .killer-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: background .3s;
    text-align: center;
}
.floating-killers .killer-card:hover { 
    background: linear-gradient(90deg, rgba(0, 119, 255, 0.08), rgba(0, 119, 255, 0.15), transparent); 
}
.floating-killers .killer-avatar { 
    width: 96px; height: 96px; border-radius: var(--radius-sm); 
    border: 1px solid rgba(0, 119, 255, 0.6); background: rgba(0, 0, 0,0.5); 
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0,0.8), 0 0 25px rgba(0,119,255,0.8);
}
.floating-killers .killer-info { display: flex; flex-direction: column; align-items: center; }
.floating-killers .killer-name { font-size: 13px; font-weight: 700; color: var(--text-primary); letter-spacing: 0.5px; }
.floating-killers .killer-kills { font-size: 11px; font-weight: 800; color: #0077ff; letter-spacing: 0.5px; text-transform: uppercase; text-shadow: 0 0 8px rgba(0,119,255,0.7); }

/* ===== Home Stats Column (Next to Login) ===== */
.login-stats-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch; /* Se estira para igualar alturas */
    gap: 15px;
    width: auto;
    margin-top: 15px;
    transform: translateX(135px);
}
.home-stats {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    gap: 8px !important; /* menos espacio entre ellas */
    width: 120px !important;
    margin: 0 !important;
}
.home-stats .info-card {
    width: 120px !important; 
    padding: 8px 5px 25px 5px !important; /* padding reducido agresivamente */
    margin: 0 !important;
    height: auto !important;
    border-radius: var(--radius) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    flex: 1 !important; /* se estiran para llenar exactamente la altura disponible */
}
.home-stats .info-card-icon { width: 30px; height: 30px; border-radius: 8px; } /* icono m�s peque�o */
.home-stats .info-card-val { font-size: 11px; } /* texto valor m�s peque�o */
.home-stats .info-card-lbl { font-size: 9px; padding: 4px 0; } /* texto etiqueta m�s peque�o */

@media (max-width: 1700px) {
    .floating-killers {
        display: none !important;
    }
}

/* ===== Header ===== */
.main-header {
    position: sticky; top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 153, 221, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 2px 10px rgba(0, 153, 221, 0.05);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 48px;
}
.header-logo img {
    height: 48px;
    display: block;
    transition: transform .3s;
}
.header-logo:hover img { transform: scale(1.05); }

/* ===== Navbar ===== */
.header-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 4px;
    margin: 0; padding: 0;
}
.header-nav .nav-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: all .3s;
    position: relative;
white-space: nowrap;
    flex-shrink: 0;
white-space: nowrap;
    flex-shrink: 0;
}
.header-nav .nav-menu li a:hover { color: var(--gold); background: rgba(0, 153, 221, 0.08); }
.header-nav .nav-menu li a.active { color: var(--gold-bright); background: rgba(0, 153, 221, 0.12); }
.header-nav .nav-menu li a.active::after {
    content: '';
    position: absolute; bottom: 2px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

/* ===== Header Buttons ===== */
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-btn {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    font-size: 11px; font-weight: 800;
    border-radius: var(--radius-sm);
    transition: all .3s;
    white-space: nowrap;
}
.header-btn-register {
    color: var(--gold-bright);
    background: rgba(10, 5, 2, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 153, 221, 0.3);
    border-radius: var(--radius-sm);
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.8), inset 0 0 10px rgba(0, 153, 221, 0.1);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 24px;
    margin-right: 20px;
    position: relative;
    overflow: hidden;
    transition: all .3s;
    z-index: 1;
white-space: nowrap;
    flex-shrink: 0;
}
.header-btn-register::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%, transparent 100%);
    background-size: 300% 100%;
    animation: shimmerMove 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.header-btn-register:hover {
    color: #1a1a1a;
    background: linear-gradient(90deg, #0066aa 0%, #0099dd 20%, #00bbee 40%, #b3f0ff 50%, #00bbee 60%, #0099dd 80%, #0066aa 100%);
    background-size: 300% 100%;
    border-color: transparent;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.6), 0 4px 20px rgba(0, 153, 221, 0.4);
}
.header-btn-register:hover::after {
    opacity: 0;
}

.header-btn-download {
    color: #1a1a1a;
    background: linear-gradient(90deg, #0066aa 0%, #0099dd 20%, #00bbee 40%, #b3f0ff 50%, #00bbee 60%, #0099dd 80%, #0066aa 100%);
    background-size: 300% 100%;
    border: none;
    border-radius: var(--radius-sm);
    animation: shimmerMove 3s ease-in-out infinite;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 24px;
    margin-right: 80px;
white-space: nowrap;
    flex-shrink: 0;
}
.header-btn-download:hover { color: #1a1a1a; box-shadow: 0 4px 20px rgba(0, 153, 221, 0.4); }

.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 8px #00ff66;
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 255, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 255, 102, 0); }
}
.hamburger {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 30px; height: 30px;
    flex-direction: column; justify-content: center; gap: 5px;
    padding: 0;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all .3s;
}

/* ===== Main Content ===== */
.main-content {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== Login Panel ===== */
.login-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* ===== Redes Sociales Hero ===== */
.hero-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 320px;
    margin-top: 25px;
}
.hero-social .social-link {
    width: 42px; height: 42px;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--gold-bright);
    background: rgba(10, 5, 2, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(0, 153, 221, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.8), inset 0 0 10px rgba(0, 153, 221, 0.1);
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.hero-social .social-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, #0066aa 0%, #0099dd 20%, #00bbee 40%, #b3f0ff 50%, #00bbee 60%, #0099dd 80%, #0066aa 100%);
    background-size: 300% 100%;
    animation: shimmerMove 2.5s ease-in-out infinite;
    opacity: 0;
    transition: opacity .3s;
    z-index: 0;
}
.hero-social .social-link::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%, transparent 100%);
    background-size: 300% 100%;
    animation: shimmerMove 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.hero-social .social-link i {
    position: relative;
    z-index: 2;
    transition: color .3s;
}
.hero-social .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.6), 0 8px 25px rgba(0, 153, 221, 0.6);
}
.hero-social .social-link:hover::before {
    opacity: 1;
}
.hero-social .social-link:hover::after {
    opacity: 0;
}
.hero-social .social-link:hover i {
    color: #1a1a1a;
}

.login-panel {
    width: 100%;
    width: 320px; /* changed from max-width to fixed width so wrapper works */
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borde esmerilado */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0,0.8), inset 0 0 0 1px rgba(0, 153, 221, 0.15); /* Anillo dorado interior */
    position: relative;
}

.login-panel::before, .content-panel::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(0, 153, 221, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.content-panel .panel-header, .floating-killers .panel-header, .login-panel-header {
    display: flex; align-items: center; gap: 10px;
    padding: 18px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: linear-gradient(180deg, #0044cc 0%, #002b80 50%, #001140 100%);
    border-bottom: 1px solid rgba(0, 100, 200, 0.3);
    box-shadow: inset 0 -5px 15px rgba(0, 100, 200, 0.15);
    position: relative; z-index: 1;
}
.login-panel-header i { font-size: 14px; }
.login-panel-body { padding: 18px 20px; position: relative; z-index: 1; }
.login-greeting {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.login-greeting strong { color: var(--text-primary); }

.login-online-status {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.login-online-status .status-text {
    font-size: 10px; font-weight: 700; color: var(--text-muted); letter-spacing: 2px;
}
.login-online-status .status-count {
    font-size: 14px; font-weight: 800; color: var(--gold-bright); text-shadow: 0 0 10px rgba(0, 153, 221, 0.4);
}

/* ===== Forms ===== */
.form-group { margin-bottom: 10px; }
.ascension-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: 2px solid rgba(0, 153, 221, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: all .3s;
    outline: none;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0,0.9); /* Profundidad inmersiva */
}
.ascension-input:focus {
    border-bottom-color: var(--gold-intense);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0,0.9), 0 5px 15px rgba(0, 153, 221, 0.15); 
}
.form-links { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.forgot-link { font-size: 11px; color: var(--text-muted); transition: color .3s; }
.forgot-link:hover { color: var(--gold); text-decoration: none; }
.login-footer { margin-top: 16px; text-align: center; font-size: 12px; color: var(--text-muted); }
.register-link { color: var(--gold); font-weight: 700; margin-left: 5px; text-transform: uppercase; transition: color .3s; }
.register-link:hover { color: var(--gold-bright); text-decoration: none; text-shadow: 0 0 8px rgba(0, 153, 221, 0.4); }

/* ===== Quick Stats ===== */
.server-quick-stats {
    width: 100%;
    max-width: 320px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 25px;
}
.quick-stat-box {
    flex: 1;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 12px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.5);
    transition: all .3s;
    text-align: center;
}
.quick-stat-box:hover {
    border-color: rgba(0, 153, 221, 0.3);
    background: rgba(20, 15, 5, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0,0.8), inset 0 0 8px rgba(0, 153, 221, 0.1);
}
.quick-stat-box .stat-val {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold-bright);
    margin-bottom: 2px;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 153, 221, 0.3);
}
.quick-stat-box .stat-lbl {
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

/* ===== Buttons ===== */
.btn-gold {
    display: inline-flex;
    align-items: center; justify-content: center;
    height: 44px;
    padding: 0 28px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
    background: linear-gradient(90deg, #0066aa 0%, #0099dd 20%, #00bbee 40%, #b3f0ff 50%, #00bbee 60%, #0099dd 80%, #0066aa 100%);
    background-size: 300% 100%;
    border: 1px solid rgba(0, 153, 221, 0.5);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .3s;
    animation: shimmerMove 2.5s ease-in-out infinite;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.4), 0 5px 15px rgba(0, 0, 0,0.6);
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}
.btn-gold:hover {
    color: #1a1a1a;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.6), 0 8px 25px rgba(0, 153, 221, 0.6);
    transform: translateY(-2px);
}
.btn-ghost {
    display: inline-flex;
    align-items: center; justify-content: center;
    height: 44px;
    padding: 0 28px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .3s;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}
.btn-ghost::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0, 153, 221,0.12) 50%, transparent 60%, transparent 100%);
    background-size: 300% 100%;
    animation: shimmerMove 4s ease-in-out infinite;
    pointer-events: none;
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--gold); }

@keyframes shimmerMove {
    0% { background-position: 0% 0; }
    100% { background-position: 100% 0; }
}

.login-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 12px;
    color: var(--text-muted);
}
.login-footer .register-link {
    display: block;
    margin-top: 4px;
    font-weight: 600;
    color: var(--gold);
}
.login-footer .register-link:hover { color: var(--gold-light); }

/* ===== Content Grid ===== */
.content-section { padding-bottom: 60px; }
.content-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 24px;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}
.content-panel {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borde esmerilado */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0,0.8), inset 0 0 0 1px rgba(0, 153, 221, 0.15); /* Anillo dorado interior */
    position: relative;
}
.panel-header {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(180deg, #0044cc 0%, #002b80 50%, #001140 100%);
    border-bottom: 1px solid rgba(0, 100, 200, 0.3);
    box-shadow: inset 0 -5px 15px rgba(0, 100, 200, 0.15);
    position: relative; z-index: 1; /* Sobre la luz de fondo */
}
.panel-header i { font-size: 16px; color: var(--gold); }
.panel-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin: 0;
}
.panel-body { padding: 16px 20px; position: relative; z-index: 1; }
.panel-link-wrap {
    text-align: center;
    padding-top: 12px;
}
.panel-link {
    display: inline-flex;
    align-items: center; justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 22px;
    font-size: 11px;
    font-weight: 800;
    color: #1a1a1a;
    background: linear-gradient(90deg, #0066aa 0%, #0099dd 20%, #00bbee 40%, #b3f0ff 50%, #00bbee 60%, #0099dd 80%, #0066aa 100%);
    background-size: 300% 100%;
    border-radius: var(--radius-sm);
    transition: all .3s;
    animation: shimmerMove 2.5s ease-in-out infinite;
}
.panel-link:hover { color: #1a1a1a; box-shadow: 0 4px 24px rgba(0, 153, 221, 0.5); transform: translateY(-2px); gap: 8px; }
.panel-link i { font-size: 10px; transition: transform .3s; }
.panel-link:hover i { transform: translateX(4px); }

/* ===== Rankings ===== */
.rank-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: all .3s;
}
.rank-row:last-child { border-bottom: none; }
.rank-row:hover { background: linear-gradient(90deg, transparent, rgba(0, 153, 221, 0.1), transparent); }

/* Medallas Top 3 */
.rank-row:nth-child(1) .rank-pos { color: #0099dd; text-shadow: 0 0 10px rgba(0, 153, 221, 0.6); }
.rank-row:nth-child(2) .rank-pos { color: #c0c0c0; text-shadow: 0 0 10px rgba(192, 192, 192, 0.6); }
.rank-row:nth-child(3) .rank-pos { color: #0099dd; text-shadow: 0 0 10px rgba(0, 153, 221, 0.6); }

.rank-pos {
    width: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text-muted);
    text-align: center;
}
.rank-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin: 0 10px;
    border: 1px solid rgba(0, 153, 221, 0.4);
    object-fit: cover;
    background: rgba(0, 0, 0,0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0,0.6);
}
.rank-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 0 12px;
}
.rank-val {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-bright);
    white-space: nowrap;
}

/* ===== News ===== */
.news-container { padding: 8px 0; }
.news-card {
    display: flex;
    padding: 0;
    border-bottom: none;
    background: rgba(15, 10, 5, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 3px solid rgba(0, 153, 221, 0.5); /* Borde de anclaje */
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.news-card:last-child { margin-bottom: 0; }

.news-card-img {
    width: 140px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s ease;
}

.news-body {
    padding: 16px;
    flex: 1;
}

.news-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0,0.8), 0 0 15px rgba(0, 153, 221, 0.15);
    border-left-color: var(--gold-intense);
    background: rgba(20, 15, 8, 0.8);
}
.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-date {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.news-date i { margin-right: 4px; }
.news-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    transition: color .3s;
}
.news-card:hover .news-title { color: var(--gold); }
.news-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 8px;
}
.news-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    transition: all .3s;
}
.news-link i { font-size: 10px; transition: transform .3s; }
.news-link:hover i { transform: translateX(4px); }

/* ===== Footer ===== */
.main-footer {
    margin-top: 60px;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0, 153, 221, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6), 0 -2px 10px rgba(0, 153, 221, 0.05);
    position: relative;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px 20px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.footer-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold-bright);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 153, 221, 0.3);
}
.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}
.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.f-badge {
    background: rgba(0, 119, 255, 0.08);
    border: 1px solid rgba(0, 119, 255, 0.3);
    color: #0077ff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 0 5px rgba(0,119,255,0.5);
}
.f-badge i { color: #0077ff; }
.footer-nav h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}
.footer-nav ul { 
    list-style: none; 
    padding: 0; 
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 12px 0;
}
.footer-nav ul li { margin-bottom: 0; }
.footer-nav ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all .3s;
    display: flex; align-items: center; gap: 8px;
}
.footer-nav ul li a i {
    font-size: 12px;
    color: var(--gold);
    transition: transform .3s;
}
.footer-nav ul li a:hover {
    color: var(--gold-bright);
    transform: translateX(5px);
}
.footer-nav ul li a:hover i {
    transform: translateX(3px);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 12px;
    color: var(--text-muted);
}
.footer-bottom span { color: var(--gold); }
.footer-credit small { font-size: 11px; opacity: 0.6; }

/* ===== Inner Pages ===== */
.inner-page-content {
    padding: 40px 0;
    min-height: 400px;
}
.inner-page-content .webengine-content table,
.inner-page-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.inner-page-content .webengine-content th,
.inner-page-content th {
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(0, 153, 221, 0.15);
    text-align: left;
}
.inner-page-content .webengine-content td,
.inner-page-content td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text-primary);
}
.inner-page-content h1, .inner-page-content h2, .inner-page-content h3 {
    color: var(--gold-bright);
    margin-bottom: 20px;
}
.inner-page-content p { margin-bottom: 16px; color: var(--text-muted); }

/* ===== UserCP Layout ===== */
.usercp-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    padding: 40px 0;
    min-height: 400px;
}
.usercp-sidebar {
    background: var(--bg-panel);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}
.usercp-sidebar-header {
    display: flex; align-items: center; gap: 10px;
    padding: 16px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(0, 153, 221, 0.1);
    background: linear-gradient(90deg, rgba(0, 153, 221, 0.08), transparent);
}
.usercp-nav ul {
    list-style: none; margin: 0; padding: 0;
}
.usercp-nav ul li {
    border-bottom: 1px solid rgba(255,255,255,0.02);
}
.usercp-nav ul li:last-child { border-bottom: none; }
.usercp-nav ul li a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 18px;
    font-size: 12px;
    color: var(--text-muted);
    transition: all .3s;
}
.usercp-nav ul li a:hover {
    color: var(--gold);
    background: rgba(0, 153, 221, 0.06);
    padding-left: 22px;
}
.usercp-nav ul li.active a {
    color: var(--gold-bright);
    background: rgba(0, 153, 221, 0.1);
    border-left: 2px solid var(--gold);
}
.usercp-nav ul li a i {
    width: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}
.usercp-nav ul li.active a i { color: var(--gold); }
.usercp-content {
    background: var(--bg-panel);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-dark);
}
.usercp-content h1, .usercp-content h2, .usercp-content h3,
.usercp-content h4 { color: var(--gold-bright); margin-bottom: 20px; }
.usercp-content table { width: 100%; border-collapse: collapse; font-size: 13px; }
.usercp-content th {
    padding: 10px 14px;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(0, 153, 221, 0.15);
    text-align: left;
}
.usercp-content td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text-primary);
}
.usercp-content p { color: var(--text-muted); margin-bottom: 16px; }
.usercp-grid-cell i.fas, .usercp-grid-cell span { color: var(--gold) !important; }
.usercp-grid-cell:hover i.fas { color: var(--gold-bright) !important; }
.usercp-grid-cell:hover span { color: var(--gold-bright) !important; }

/* ===== Messages / Notifications ===== */
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; border: none; }
.alert-success { background: rgba(46, 213, 115, 0.1); color: #2ed573; border: 1px solid rgba(46, 213, 115, 0.2); }
.alert-error, .alert-danger { background: rgba(0, 119, 255, 0.1); color: #0077ff; border: 1px solid rgba(0, 119, 255, 0.2); }
.alert-info { background: rgba(0, 153, 221, 0.1); color: #0099dd; border: 1px solid rgba(0, 153, 221, 0.2); }
.alert-warning { background: rgba(0, 153, 221, 0.1); color: #0099dd; border: 1px solid rgba(0, 153, 221, 0.2); }

/* ===== WebEngine Global Overrides (Design System) ===== */
.container-fluid { padding: 0; }
.row { margin: 0; }
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { padding: 0 12px; }

/* Global Forms */
.form-control, select.form-control, textarea.form-control {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    background: rgba(5, 5, 5, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: 2px solid rgba(0, 153, 221, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: all .3s;
    outline: none;
    box-shadow: inset 0 4px 10px rgba(0, 0, 0,0.9);
}
select.form-control { cursor: pointer; appearance: none; background-image: url('data:image/svg+xml;utf8,<svg fill="%23f5b642" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>'); background-repeat: no-repeat; background-position-x: 98%; background-position-y: 50%; }
.form-control:focus {
    border-bottom-color: var(--gold-intense);
    background: rgba(0, 0, 0, 0.9);
    box-shadow: inset 0 4px 10px rgba(0, 0, 0,0.9), 0 5px 15px rgba(0, 153, 221, 0.15); 
}

/* Global Tables */
.table, .table-striped, .table-bordered, .table-hover { width: 100% !important; border-collapse: collapse !important; margin-bottom: 20px !important; font-size: 13px !important; color: var(--text-muted) !important; background: rgba(5,5,5,0.8) !important; border-radius: var(--radius-sm) !important; overflow: hidden !important; border: 1px solid rgba(255,255,255,0.05) !important; }
.table th, .table-bordered th { padding: 12px 16px !important; font-weight: 700 !important; letter-spacing: 1px !important; text-transform: uppercase !important; color: var(--gold-bright) !important; background: linear-gradient(90deg, rgba(0, 35, 70, 0.8), rgba(0, 45, 90, 0.6)) !important; border: none !important; border-bottom: 1px solid rgba(0, 153, 221, 0.3) !important; text-align: left !important; }
.table td, .table-bordered td { padding: 12px 16px !important; border: none !important; border-top: 1px solid rgba(255,255,255,0.03) !important; border-bottom: 1px solid rgba(255,255,255,0.03) !important; background-color: transparent !important; }
.table-striped > tbody > tr:nth-of-type(odd), .table-striped > tbody > tr:nth-of-type(even) { background-color: transparent !important; }
.table tbody tr:hover, .table-hover tbody tr:hover, .table-striped tbody tr:hover { background-color: rgba(0, 153, 221, 0.1) !important; }

/* Global Buttons (WebEngine defaults) */
.btn, .btn-primary, .btn-default, .btn-success, .btn-info, .btn-danger {
    display: inline-flex; align-items: center; justify-content: center;
    height: 40px; padding: 0 24px; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 800;
    border-radius: var(--radius-sm); cursor: pointer; transition: all .3s; border: none; text-transform: uppercase; text-decoration: none;
}
.btn-primary, .btn-success {
    color: #1a1a1a;
    background: linear-gradient(90deg, #0066aa 0%, #0099dd 20%, #00bbee 40%, #b3f0ff 50%, #00bbee 60%, #0099dd 80%, #0066aa 100%);
    background-size: 300% 100%; border: 1px solid rgba(0, 153, 221, 0.5);
    animation: shimmerMove 2.5s ease-in-out infinite;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.4), 0 5px 15px rgba(0, 0, 0,0.6);
}
.btn-primary:hover, .btn-success:hover { transform: translateY(-2px); box-shadow: inset 0 0 10px rgba(255,255,255,0.6), 0 8px 25px rgba(0, 153, 221, 0.6); color: #1a1a1a; }

.btn-default, .btn-info {
    color: var(--text-muted); background: rgba(5,5,5,0.8); border: 1px solid rgba(255,255,255,0.1);
}
.btn-default:hover, .btn-info:hover { color: var(--gold-bright); border-color: var(--gold); }

.btn-danger { background: rgba(0, 119, 255, 0.2); color: #0077ff; border: 1px solid rgba(0, 119, 255, 0.5); }
.btn-danger:hover { background: rgba(0, 119, 255, 0.4); }

/* Global Pagination */
.pagination { display: flex; list-style: none; padding: 0; margin: 20px 0; gap: 4px; justify-content: center; }
.pagination li a, .pagination li span {
    display: flex; align-items: center; justify-content: center; width: 34px; height: 34px;
    background: rgba(5,5,5,0.8); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
    color: var(--text-muted); font-size: 12px; font-weight: 600; text-decoration: none; transition: all .3s;
}
.pagination li a:hover { color: var(--gold); border-color: var(--gold); background: rgba(0, 153, 221, 0.1); }
.pagination li.active span { color: #1a1a1a; background: var(--gold); border-color: var(--gold-bright); box-shadow: 0 0 15px rgba(0, 153, 221, 0.4); }
.pagination li.disabled span { opacity: 0.5; cursor: not-allowed; }

/* Panels inside UserCP */
.panel, .panel-default { background: rgba(10, 10, 10, 0.7) !important; backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important; border: 1px solid rgba(255, 255, 255, 0.05) !important; border-radius: var(--radius) !important; overflow: hidden !important; box-shadow: 0 10px 40px rgba(0, 0, 0,0.8), inset 0 0 0 1px rgba(0, 153, 221, 0.15) !important; margin-bottom: 20px !important; }
.panel-heading, .panel-default > .panel-heading { padding: 16px 20px !important; font-size: 13px !important; font-weight: 700 !important; text-transform: uppercase !important; color: var(--gold-bright) !important; border: none !important; border-bottom: 1px solid rgba(0, 65, 130, 0.3) !important; background: rgba(0, 45, 90, 0.5) !important; }
.panel-body, .panel-default > .panel-body { padding: 20px !important; background: transparent !important; border: none !important; }
.panel-footer, .panel-default > .panel-footer { background: rgba(5,5,5,0.8) !important; border-top: 1px solid rgba(255,255,255,0.05) !important; border-radius: 0 0 var(--radius) var(--radius) !important; }

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .content-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .header-container { padding: 0 20px; }
    .header-nav { display: none; }
    .header-nav.open { display: block; position: absolute; top: var(--header-h); left: 0; width: 100%; background: rgba(5,5,5,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0, 153, 221,0.15); }
    .header-nav.open .nav-menu { flex-direction: column; padding: 12px 20px; }
    .header-nav.open .nav-menu li a { padding: 12px 16px; }
    .hamburger { display: flex; }
    .header-btn-label { display: none; }
    .content-grid { grid-template-columns: 1fr; }
    .login-section { align-items: center; }
    .login-panel { max-width: 100%; }
    .usercp-layout { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .main-content { padding: 0 16px; }
    .hero-social { max-width: 100%; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; gap: 30px; }
    .panel-header { padding: 14px 16px; }
    .panel-header h3 { font-size: 16px; }
    .content-box { padding: 16px; }
    .modal-dialog { margin: 10px; width: auto; }
    .panel-body { padding: 12px 16px; }
    .footer-container { padding: 20px 16px; }

    .lang-btn { width: 32px; height: 32px; line-height: 32px; font-size: 9px; }
}
/* ===== Premium Server Info Cards ===== */
.server-info-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
}
.info-card {
    background: linear-gradient(135deg, rgba(0, 153, 221, 0.1) 0%, rgba(10, 5, 2, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 25px 20px 55px 20px; /* increased padding */
    width: 220px; /* larger card */
    height: 220px; /* fixed uniform height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: all .3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 153, 221, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-bright);
    box-shadow: 0 10px 25px rgba(0, 0, 0,0.8), 0 0 15px rgba(0, 153, 221, 0.2);
}

.info-card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(180deg, #0099dd, #0099dd);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px; /* larger icon */
    color: #111;
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.5);
    position: relative;
    z-index: 1;
}
.info-card-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.info-card-val {
    color: var(--gold-bright);
    font-size: 18px; /* larger text */
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0, 153, 221, 0.3);
    line-height: 1.2;
}
.info-card-lbl {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 12px 0; /* thicker bottom bar */
    background: linear-gradient(180deg, #0044cc 0%, #002b80 50%, #001140 100%);
    border-top: 1px solid #002b80;
    color: #ffffff;
    font-size: 12px; /* larger label font */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0,0.9);
    text-align: center;
    border-radius: 0;
    box-shadow: none;
}
@media (max-width: 992px) {
    .server-info-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .server-info-cards { grid-template-columns: 1fr; }
}

/* ===== INFO MODULE TABLES ===== */
.info-table-container {
    background: rgba(10, 5, 2, 0.7);
    border: 1px solid rgba(0, 153, 221, 0.15);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 153, 221, 0.05);
    padding: 20px;
}

.premium-table {
    width: 100%;
    color: #ddd;
    margin-bottom: 0;
    border-collapse: collapse;
    background: transparent !important;
}
.premium-table tr {
    background: transparent !important;
}
.premium-table td {
    border: 1px solid rgba(0, 153, 221, 0.1) !important;
    padding: 12px 15px !important;
    vertical-align: middle !important;
    font-size: 13px;
    background: transparent !important;
}
.premium-table tr:hover td {
    background: rgba(0, 153, 221, 0.05);
}
.premium-table td.text-center {
    text-align: center;
}
.premium-table td[rowspan] {
    font-weight: 700;
    color: var(--gold);
}

/* Modifiers */
.content-panel.transparent-panel {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


/* ==========================================
   RANKINGS MODULE REDESIGN
   ========================================== */

/* Page Title (Generic WebEngine Class) */
.page-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}
.page-title span {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold-bright);
    text-shadow: 0 0 15px rgba(0, 153, 221, 0.8), 0 0 30px rgba(0, 153, 221, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Rankings Submenu (Tabs) */
.rankings_menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.rankings_menu a {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 25px;
    border-radius: var(--radius);
    color: #888;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}
.rankings_menu a:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
}
.rankings_menu a.active {
    color: var(--gold-bright);
    background: linear-gradient(to bottom, rgba(0, 153, 221, 0.05) 0%, rgba(0, 153, 221, 0.15) 100%);
    border-color: rgba(0, 153, 221, 0.3);
    border-bottom: 3px solid var(--gold-bright);
    box-shadow: 0 5px 15px rgba(0, 153, 221, 0.2);
}

/* Character Class Filter (Mini Cards Grid) */
.text-center > .rankings-class-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
}
.rankings-class-filter li {
    margin: 0;
    padding: 0;
}
.rankings-class-filter-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 12px 5px;
    width: 105px;
    height: 105px;
    text-align: center;
    color: #ccc;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    line-height: 1.2;
}
.rankings-class-filter-selection br {
    display: none; /* Hide the hardcoded <br> since we use flex gap */
}
.rankings-class-filter-selection:hover {
    background: rgba(0, 153, 221, 0.15);
    border-color: rgba(0, 153, 221, 0.5);
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 153, 221, 0.25);
}
/* The default webengine grayscale class */
.rankings-class-filter-grayscale img {
    filter: grayscale(100%) opacity(0.4);
    transition: all 0.3s ease;
}
.rankings-class-filter-selection:hover img {
    filter: grayscale(0%) opacity(1);
    border-color: var(--gold-bright);
}
.rankings-class-filter-image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-bottom: 0;
    border: 2px solid rgba(255,255,255,0.15);
    object-fit: cover;
    transition: all 0.3s ease;
}

/* Rankings Table */
.rankings-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px; /* space between rows */
    background: transparent !important;
    margin-bottom: 40px;
}
.rankings-table tr {
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}
.rankings-table tr:hover {
    background: rgba(0, 153, 221, 0.05);
}
.rankings-table td {
    padding: 12px 15px;
    vertical-align: middle;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: #ddd;
    font-size: 14px;
}
.rankings-table td:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 8px 0 0 8px;
}
.rankings-table td:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 0 8px 8px 0;
}
.rankings-table td a {
    color: inherit;
    text-decoration: none;
}
.rankings-table td a:hover {
    color: var(--gold-bright);
}

/* Table Headers (First Row) */
.rankings-table tr:first-child {
    background: linear-gradient(90deg, rgba(0, 153, 221, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.rankings-table tr:first-child td {
    color: var(--gold-bright);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    border: none;
}
.rankings-table tr:first-child:hover {
    background: linear-gradient(90deg, rgba(0, 153, 221, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Avatars inside table */
.rankings-table .rankings-class-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(0, 153, 221, 0.5);
    box-shadow: 0 0 5px rgba(0, 153, 221, 0.3);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
.rankings-table td:nth-child(3) {
    text-align: center;
}

/* Ranking Place Number */
.rankings-table-place {
    font-weight: 900;
    color: var(--gold-bright) !important;
    text-align: center;
    width: 50px;
    font-size: 18px !important;
}
.rankings-table-place.rank-gold { color: #0099dd !important; text-shadow: 0 0 10px rgba(0, 153, 221,0.5); font-size: 20px !important; }
.rankings-table-place.rank-silver { color: #e0e0e0 !important; text-shadow: 0 0 10px rgba(224,224,224,0.5); font-size: 18px !important; }
.rankings-table-place.rank-bronze { color: #0099dd !important; text-shadow: 0 0 10px rgba(0, 153, 221,0.5); }


/* ===== Castle Siege Owner Premium Styles ===== */
.castle-owner-panel {
    background: linear-gradient(135deg, rgba(5, 10, 30, 0.9), rgba(0, 5, 10, 0.95));
    border: 1px solid rgba(0, 119, 255, 0.3);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0,0.8), inset 0 0 40px rgba(0,119,255,0.1);
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.castle-owner-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.8), transparent);
}
.castle-owner-panel .panel-body {
    padding: 30px;
}
.castle-owner-name {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(0, 153, 221, 0.5);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.castle-owner-name a { color: var(--gold); }
.castle-owner-name a:hover { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.8); }
.castle-owner-panel img {
    border: 2px solid rgba(0, 153, 221, 0.5);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 20px rgba(0, 0, 0,0.6), 0 0 30px rgba(0, 153, 221, 0.2);
    margin-bottom: 20px;
}
.castle-owner-panel h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.castle-owner-panel p {
    font-size: 16px;
    color: #0077ff;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0,119,255,0.6);
}
.castle-owner-panel p a { color: #0077ff; }
.castle-owner-panel p a:hover { color: #fff; }
.castle-owner-ally-title strong {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}
.castle-owner-ally-row {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 5px;
    padding: 10px 0;
    transition: all 0.3s ease;
}
.castle-owner-ally-row:hover {
    background: rgba(0,119,255,0.05);
    border-color: rgba(0,119,255,0.2);
    transform: translateX(5px);
}

/* ===== Form & Panel Premium Styles (Login / Register / UserCP) ===== */
.register-container {
    max-width: 450px;
    margin: 60px auto;
}
.panel-general {
    background: rgba(15, 5, 5, 0.85);
    border: 1px solid rgba(0, 119, 255, 0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0, 0, 0,0.9), inset 0 0 25px rgba(0, 119, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}
.panel-general::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}
.panel-general .panel-body {
    padding: 40px 35px;
}
.form-label {
    color: #ddd;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
}
.input-group {
    display: flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0,0.5);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s ease;
}
.input-group:focus-within {
    border-color: rgba(0, 153, 221, 0.5);
    box-shadow: 0 0 20px rgba(0, 153, 221, 0.2);
}
.input-group-text {
    background: rgba(0, 0, 0,0.7);
    color: var(--gold);
    border: none;
    padding: 14px 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.form-control {
    background: rgba(20,20,20,0.8);
    border: none;
    color: #fff;
    padding: 14px 15px;
    width: 100%;
    font-size: 15px;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.form-control:focus {
    background: rgba(30,30,30,0.9);
}
.form-text {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
}
.form-text a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s;
}
.form-text a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.panel-general hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 30px 0;
}









/* ======================================================== */
/* [ Ascension DNA ] Premium UserCP Modules (Rename, VIP, Redeem, Transfer) */
/* ======================================================== */

/* Alertas de Informaci�n PHP (Override) */
.panel-general > .panel-body > div[style*="color:#d4af37"] {
    background: rgba(0,0,0, 0.4) !important;
    border-left: 3px solid var(--primary-color) !important;
    color: #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: inset 0 0 15px rgba(0,0,0, 0.6) !important;
}
.panel-general > .panel-body > div[style*="color:#d4af37"] i {
    color: var(--primary-color) !important;
}

/* Grilla Base para Renombrar Personaje */
.glass-rename-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 15px; }
.glass-rename-card { background: rgba(0, 0, 0, 0.35); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 10px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); position: relative; overflow: hidden; }
.glass-rename-card:hover { border-color: var(--primary-color); background: rgba(0, 0, 0, 0.5); box-shadow: inset 0 0 20px var(--primary-dark); }
.glass-rename-card .form-horizontal { display: grid; grid-template-columns: 80px 1fr 280px; align-items: center; margin: 0; padding: 10px; }
.glass-rename-avatar { text-align: center; }
.glass-rename-avatar img { max-width: 65px; border-radius: 50%; filter: drop-shadow(0 0 10px var(--primary-dark)); transition: transform 0.4s ease; }
.glass-rename-card:hover .glass-rename-avatar img { transform: scale(1.1) rotate(3deg); filter: drop-shadow(0 0 15px var(--primary-color)); }
.glass-rename-name { font-family: 'Inter', sans-serif; font-size: 19px; color: #ffffff; letter-spacing: 0.5px; margin-bottom: 5px; text-shadow: 0 0 5px rgba(255,255,255,0.3); }
.glass-rename-stats { display: flex; gap: 8px; font-size: 11px; }
.glass-stat-pill { background: rgba(0,0,0,0.6); border: 1px solid rgba(255, 255, 255, 0.08); padding: 3px 10px; border-radius: 20px; color: #bbb; letter-spacing: 0.5px; }
.glass-stat-pill i { color: var(--primary-color); font-size: 11px; margin-right: 3px; }
.glass-rename-form { display: flex; gap: 10px; align-items: stretch; height: 38px; }
.glass-rename-form .form-control { flex: 1; background: rgba(0,0,0,0.5); border: 1px solid rgba(255, 255, 255, 0.1); color: #fff; font-weight: 600; border-radius: 6px; padding: 8px 12px; height: 100%; transition: all 0.3s; }
.glass-rename-form .form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 15px var(--primary-dark); outline: none; }
.glass-rename-form .btn-primary { background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%); border: 1px solid var(--primary-color); color: #fff; font-weight: 700; text-transform: uppercase; font-size: 13px; border-radius: 6px; height: 100%; padding: 0 20px; transition: all 0.3s ease; white-space: nowrap; }
.glass-rename-form .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px var(--primary-dark); background: var(--primary-color); }

@media(max-width: 900px) {
    .glass-rename-card .form-horizontal { grid-template-columns: 1fr; text-align: center; gap: 15px; padding: 15px; }
    .glass-rename-stats { justify-content: center; }
    .glass-rename-form { flex-direction: column; height: auto; }
    .glass-rename-form .form-control, .glass-rename-form .btn-primary { height: 40px; }
}

/* Transferir Cr�ditos */
.glass-transfer-balance { text-align: center; padding: 25px 20px; background: rgba(0,0,0, 0.4); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; margin-bottom: 25px; position: relative; overflow: hidden; }
.glass-transfer-balance::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--primary-color), transparent); }
.glass-transfer-balance-label { color: #aaa; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.glass-transfer-balance-amount { font-family: 'Inter', sans-serif; font-size: 42px; color: var(--primary-color); text-shadow: 0 0 20px var(--primary-dark); font-weight: 700; }
.glass-transfer-credits-label { font-size: 15px; color: var(--primary-color); margin-top: 15px; display: block; }

/* Canjear C�digo (Historial) */
.glass-redeem-history { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 20px; }
.glass-redeem-history thead th { background: rgba(0,0,0,0.6); color: var(--primary-color); text-transform: uppercase; font-size: 12px; letter-spacing: 1px; padding: 12px 15px; border-bottom: 2px solid var(--primary-dark); }
.glass-redeem-history tbody tr { background: rgba(255,255,255,0.02); transition: all 0.3s; }
.glass-redeem-history tbody tr:hover { background: rgba(0,0,0,0.5); }
.glass-redeem-history tbody td { padding: 14px 15px; color: #ccc; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.glass-redeem-history code { background: rgba(0,0,0,0.6); padding: 5px 12px; border-radius: 4px; color: #fff; border: 1px dashed var(--primary-color); font-family: monospace; font-size: 13px; }

/* Formularios Generales UserCP (VIP, Reset, etc) */
.panel-general .form-group label { color: #ddd; font-weight: 600; margin-bottom: 8px; }
.panel-general .form-control { background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 6px; padding: 10px 15px; height: 42px; transition: all 0.3s; }
.panel-general .form-control:focus { border-color: var(--primary-color); box-shadow: 0 0 15px var(--primary-dark); background: rgba(0,0,0,0.6); }
.panel-general .btn-primary { background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%); border: 1px solid var(--primary-color); color: #fff; padding: 12px 25px; border-radius: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; width: 100%; }
.panel-general .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 20px var(--primary-dark); background: var(--primary-color); border-color: #fff; }

/* Fixes for Rename Button and Layout */
.glass-rename-card .form-horizontal { display: flex !important; align-items: center; justify-content: space-between; padding: 15px; }
.glass-rename-left { display: flex; align-items: center; gap: 15px; flex: 1; }
.glass-rename-form .btn-rename { background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%); border: 1px solid var(--primary-color); color: #fff; font-weight: 700; text-transform: uppercase; font-size: 13px; border-radius: 6px; padding: 0 20px; transition: all 0.3s ease; white-space: nowrap; height: 38px; cursor: pointer; }
.glass-rename-form .btn-rename:hover { transform: translateY(-2px); box-shadow: 0 5px 15px var(--primary-dark); background: var(--primary-color); }

/* Global Premium Button Overrides */
.usercp-modules .btn-primary, .btn-rename, button[name="submit"] { background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important; border: 1px solid var(--primary-color) !important; color: #fff !important; font-weight: 700 !important; text-transform: uppercase !important; font-size: 13px !important; border-radius: 6px !important; transition: all 0.3s ease !important; height: 42px !important; line-height: 40px !important; padding: 0 25px !important; display: inline-flex; align-items: center; justify-content: center; }
.usercp-modules .btn-primary:hover, .btn-rename:hover, button[name="submit"]:hover { transform: translateY(-2px) !important; box-shadow: 0 5px 15px var(--primary-dark) !important; background: var(--primary-color) !important; border-color: #fff !important; color: #fff !important; }

/* Global Premium Input Overrides */
input[type="text"], input[type="password"], select, .form-control { background: rgba(0,0,0,0.4) !important; border: 1px solid rgba(255,255,255,0.1) !important; color: #fff !important; border-radius: 6px !important; padding: 10px 15px !important; height: 42px !important; transition: all 0.3s !important; }
input[type="text"]:focus, input[type="password"]:focus, select:focus, .form-control:focus { border-color: var(--primary-color) !important; box-shadow: 0 0 15px var(--primary-dark) !important; background: rgba(0,0,0,0.6) !important; outline: none !important; }


/* ===== Registro / Login (WebEngine bootstrap real) ===== */
.inner-page-content .col-12.mx-auto,
.inner-page-content .col-12.col-sm-6.mx-auto {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(0, 153, 221, 0.15);
    padding: 30px 24px;
    margin: 30px auto;
    float: none;
}
.inner-page-content .col-12.mx-auto .input-group .input-group-text {
    background: var(--primary-color);
    border: none;
    color: #fff;
}
.inner-page-content .col-12.mx-auto .form-control {
    height: 42px;
}
.inner-page-content .col-12.mx-auto .btn-primary {
    margin: 0 auto;
    display: inline-block;
}
.inner-page-content .col-12.mx-auto h1.page-title,
.inner-page-content h1.page-title {
    text-align: center;
    border-bottom: 1px solid rgba(0, 153, 221, 0.2);
    padding-bottom: 12px;
    margin-bottom: 24px;
}


/* ===== Registro: validacion debajo del campo (no a la derecha) ===== */
.inner-page-content .invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #ff6b6b;
    text-align: left;
}
.inner-page-content .input-group .form-control {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.inner-page-content .input-group-text {
    background: var(--primary-color);
    border: none;
    color: #fff;
    border-radius: 6px 0 0 6px;
    min-width: 42px;
    justify-content: center;
}
.inner-page-content .needs-validation .was-validated .form-control:invalid {
    border-color: #ff6b6b;
}


/* ===== HERO LOGO CENTRAL (home) ===== */
.home-central-logo {
    text-align: center;
    margin: -115px auto 40px;
    position: relative;
    z-index: 5;
}
.home-central-logo img {
    max-width: 340px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.6));
}
@media (max-width: 768px) {
    .home-central-logo img { max-width: 220px; }
    .home-central-logo { margin: 0 auto 24px; }
}
